home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / dec92.zip / 1012062A < prev    next >
Text File  |  1992-10-05  |  507b  |  31 lines

  1. /*
  2.  * mpu.h 
  3.  */
  4.  
  5. #pragma pack(4)
  6. struct mpustuff {
  7.   int opsize;   /* # of bytes in operand */
  8.   int ressize;  /* # of bytes expected back */
  9.   char *opbuf;  /* operands */
  10.   char *resbuf; /* return buffer */
  11. };
  12. #pragma pack()
  13.  
  14. /*
  15.  * MPU commands.  Only a few are listed here.
  16.  */
  17.  
  18. #define MPU_RESET     0xff
  19. #define MPU_VERSION   0xac
  20. #define MPU_REVISION  0xad
  21. #define MPU_UART      0x3f
  22.  
  23. /*
  24.  * Driver commands
  25.  */
  26.  
  27. #define MPU_DRIVERID  0x0100
  28. #define MPU_GETDEBUG  0x0101
  29. #define MPU_SETDEBUG  0x0102
  30.  
  31.